Middleware (FastAPI Tutorial)
https://fastapi.tiangolo.com/tutorial/middleware/
#FastAPI
A "middleware" is a function that works with every request before it is processed by any specific path operation. And also with every response before returning it.
例:
add_process_time_header
Advanced Middleware (FastAPI Advanced User Guide)